home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ WinXP Simple Shares.xpl < prev    next >
Text File  |  2002-03-10  |  1KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="System\Advanced System Settings"
  5. "NAME"="Windows XP Simple Shares"
  6. "VERSION"="1.00"
  7. "OSVERSION"="000001"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Use "Simple Shares" with no advanced options"
  10. "DESCRIPTION 1"="By default, Windows XP uses a new system for shares: Simple Mode."
  11. "DESCRIPTION 2"="In this modes, every share you create can been seen by everyone but nobody can make changes to the files inside these shares. Plus, you even can't change this by using ACLs (Access Control Lists) with the "Security" tab inside Explorer."
  12. "DESCRIPTION 3"="If this option is deactivated, you can use ACLs on any file, just like it used to be in Windows 2000."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=""
  17.  
  18.  
  19. sV1="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\forceguest" '1= default, 0 = ACLs
  20.  
  21. Sub Plugin_Initialize 
  22.     i=RegReadValue(sV1)
  23.     if i=1 then
  24.        SetUIElement 1,true 
  25.     end if
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.     Call RegWriteValue(sPAth & sV1,1,2)
  35.  else
  36.     Call RegWriteValue(sPAth & sV1,0,2)
  37.  end if
  38.  
  39.  Call Restart()
  40. End Sub
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.  
  45.  
  46.  
  47.